home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Interactive Reference Guide / C-C++ Interactive Reference Guide.iso / c_ref / csource5 / 310_01 / fork.st < prev    next >
Text File  |  1990-04-20  |  145b  |  14 lines

  1. Class Main
  2. [
  3.     loop1
  4.         10 timesRepeat: [17 print]
  5. |
  6.     loop2
  7.         10 timesRepeat: [23 print]
  8. |
  9.     main
  10.         [self loop1] fork.
  11.         self loop2
  12. ]
  13.  
  14.